home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / PInterfaces / FinderRegistry.p < prev    next >
Encoding:
Text File  |  1997-08-12  |  20.5 KB  |  575 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        FinderRegistry.p
  3.  
  4.      Contains:    Data types for Finder AppleEvents
  5.  
  6.      Version:    Technology:    Mac OS 8
  7.                  Release:    Universal Interfaces 3.0.1
  8.  
  9.      Copyright:    © 1985-1997 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:        Please include the the file and version information (from above) with
  12.                  the problem description.  Developers belonging to one of the Apple
  13.                  developer programs can submit bug reports to:
  14.  
  15.                      devsupport@apple.com
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT FinderRegistry;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __FINDERREGISTRY__}
  28. {$SETC __FINDERREGISTRY__ := 1}
  29.  
  30. {$I+}
  31. {$SETC FinderRegistryIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __AEREGISTRY__}
  35. {$I AERegistry.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __OSA__}
  38. {$I OSA.p}
  39. {$ENDC}
  40.  
  41.  
  42. {$PUSH}
  43. {$ALIGN MAC68K}
  44. {$LibExport+}
  45.  
  46.  
  47. {
  48.   //////////////////////////////////////
  49.    Finder Suite
  50.   //////////////////////////////////////
  51. }
  52.  
  53. {
  54.    The old Finder Event suite was 'FNDR'
  55.    The new suite is 'fndr'
  56. }
  57.  
  58. CONST
  59.     kAEFinderSuite                = 'fndr';
  60.  
  61. {
  62.   //////////////////////////////////////
  63.    Finder Events
  64.   //////////////////////////////////////
  65. }
  66.     kAECleanUp                    = 'fclu';
  67.     kAEEject                    = 'ejct';
  68.     kAEEmpty                    = 'empt';
  69.     kAEErase                    = 'fera';
  70.     kAEGestalt                    = 'gstl';
  71.     kAEPutAway                    = 'ptwy';
  72.     kAERebuildDesktopDB            = 'rddb';
  73.     kAESync                        = 'fupd';
  74.     kAEInterceptOpen            = 'fopn';
  75.  
  76. {  "Sort" from the database suite: }
  77.     kAEDatabaseSuite            = 'DATA';
  78.     kAESort                        = 'SORT';
  79.  
  80. {
  81.   ////////////////////////////////////////////////////////////////////////
  82.    Classes
  83.    Note: all classes are defined up front so that the property definitions
  84.    can reference classes.
  85.   ////////////////////////////////////////////////////////////////////////
  86. }
  87.  
  88.     cInternalFinderObject        = 'obj ';                        {  cReference - used to distinguish objects used inside the Finder only }
  89.  
  90. {
  91.    Main Finder class definitions
  92.    Indentation implies object model hierarchy
  93. }
  94.                                                                 {  We do not use class cItem from AERegistry.r. Instead our class Item is a cObject //••  BREADCRUMB pmc - WHY?? }
  95.                                                                 {             cItem                                    = 'citm',        // defined in AERegistry.r }
  96.                                                                 {                 cFile                                = 'file',    // defined in AERegistry.r }
  97.     cAliasFile                    = 'alia';
  98.     cApplicationFile            = 'appf';
  99.     cControlPanelFile            = 'ccdv';
  100.     cDeskAccessoryFile            = 'dafi';
  101.     cDocumentFile                = 'docf';
  102.     cFontFile                    = 'fntf';
  103.     cSoundFile                    = 'sndf';
  104.     cClippingFile                = 'clpf';
  105.     cContainer                    = 'ctnr';
  106.     cDesktop                    = 'cdsk';
  107.     cSharableContainer            = 'sctr';
  108.     cDisk                        = 'cdis';
  109.     cFolder                        = 'cfol';
  110.     cSuitcase                    = 'stcs';
  111.     cAccessorySuitcase            = 'dsut';
  112.     cFontSuitcase                = 'fsut';
  113.     cTrash                        = 'ctrs';
  114.     cDesktopPrinter                = 'dskp';
  115.     cContentSpace                = 'dwnd';                        {                 cWindow                                = 'cwin',        // defined in AERegistry.r }
  116.     cContainerWindow            = 'cwnd';
  117.     cInfoWindow                    = 'iwnd';
  118.     cSharingWindow                = 'swnd';
  119.     cStatusWindow                = 'qwnd';
  120.     cClippingWindow                = 'lwnd';
  121.     cPreferencesWindow            = 'pwnd';
  122.     cDTPWindow                    = 'dtpw';
  123.     cProcess                    = 'prcs';
  124.     cAccessoryProcess            = 'pcda';
  125.     cApplicationProcess            = 'pcap';
  126.     cGroup                        = 'sgrp';
  127.     cUser                        = 'cuse';                        {             cApplication                            = 'capp',        // defined in AERegistry.r }
  128.     cSharingPrivileges            = 'priv';
  129.     cPreferences                = 'cprf';
  130.     cLabel                        = 'clbl';                        {  For use by viewer search engines: }
  131.     cOnlineDisk                    = 'cods';
  132.     cOnlineLocalDisk            = 'clds';
  133.     cOnlineRemoteDisk            = 'crds';                        {  Miscellaneous class definitions }
  134.     cEntireContents                = 'ects';                        { •• BREADCRUMB  pmc - also defined in EntireContents.h }
  135.     cIconFamily                    = 'ifam';
  136.  
  137.  
  138. {
  139.   //////////////////////////////////////
  140.    Properties
  141.   //////////////////////////////////////
  142. }
  143.  
  144. {  Properties of class cItem (really cObject) }
  145.                                                                 {     pBounds                                    = 'pbnd',            // defined in AERegistry.r }
  146.     pComment                    = 'comt';
  147.     pContainer                    = 'ctnr';
  148.     pContentSpace                = 'dwnd';
  149.     pCreationDateOld            = 'crtd';                        {  to support pre-Finder 8 scripts }
  150.     pCreationDate                = 'ascd';                        {  from File Commands OSAX }
  151.     pDescription                = 'dscr';
  152.     pDisk                        = 'cdis';
  153.     pFolderOld                    = 'cfol';                        {  to support pre-Finder 8 scripts }
  154.     pFolder                        = 'asdr';                        {  from File Commands OSAX }
  155.     pIconBitmap                    = 'iimg';                        {     pID                                        = 'ID  ',            // defined in AERegistry.r }
  156.     pInfoWindow                    = 'iwnd';
  157.     pKind                        = 'kind';
  158.     pLabelIndex                    = 'labi';
  159.     pModificationDateOld        = 'modd';                        {  to support pre-Finder 8 scripts }
  160.     pModificationDate            = 'asmo';                        {  from File Commands OSAX }
  161.                                                                 {     pName                                    = 'pnam',            // defined in AERegistry.r }
  162.     pPhysicalSize                = 'phys';
  163.     pPosition                    = 'posn';
  164.     pIsSelected                    = 'issl';
  165.     pSize                        = 'ptsz';                        {  pPointSize defined in AERegistry.r }
  166.     pWindow                        = 'cwin';
  167.     pPreferencesWindow            = 'pwnd';
  168.  
  169.  
  170. {  Properties of class cFile (subclass of cItem) }
  171.     pFileCreator                = 'fcrt';
  172.     pFileType                    = 'asty';                        {  from File Commands OSAX }
  173.     pFileTypeOld                = 'fitp';                        {  to support pre-Finder 8 scripts }
  174.     pIsLocked                    = 'aslk';                        {  from File Commands OSAX }
  175.     pIsLockedOld                = 'islk';                        {  to support pre-Finder 8 scripts }
  176.                                                                 {     pIsStationeryPad                        = 'pspd',            // defined in AERegistry.r                             }
  177.                                                                 {     pVersion                                = 'vers',            // defined in AERegistry.r }
  178.     pProductVersion                = 'ver2';
  179.  
  180.  
  181. {  Properties of class cAliasFile (subclass of cFile) }
  182.     pOriginalItem                = 'orig';
  183.  
  184. {  Properties of class cApplicationFile (subclass of cFile) }
  185.     pMinAppPartition            = 'mprt';
  186.     pAppPartition                = 'appt';
  187.     pSuggestedAppPartition        = 'sprt';
  188.     pIsScriptable                = 'isab';
  189.  
  190. {
  191.    Properties of class cControlPanel (Views CP only) (subclass of cFile)
  192.    Note: the other view-like preference settings are not available in the Views
  193.    control panel. These properties are only offered here for backward compatability.
  194.    To set the full range of Finder Preferences, use the Preferences object.
  195. }
  196.     pShowFolderSize                = 'sfsz';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  197.     pShowComment                = 'scom';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  198.     pShowDate                    = 'sdat';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  199.     pShowCreationDate            = 'scda';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  200.     pShowKind                    = 'sknd';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  201.     pShowLabel                    = 'slbl';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  202.     pShowSize                    = 'ssiz';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  203.     pShowVersion                = 'svrs';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  204.     pSortDirection                = 'sord';
  205.     pShowDiskInfo                = 'sdin';                        {  Always on in Finder 8.0 HIS }
  206.     pListViewIconSize            = 'lvis';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  207.     pGridIcons                    = 'fgrd';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  208.     pStaggerIcons                = 'fstg';                        {  No longer part of the Finder 8.0 HIS }
  209.     pViewFont                    = 'vfnt';
  210.     pViewFontSize                = 'vfsz';
  211.  
  212. {  Properties of class cContainer (subclass of cItem) }
  213.     pCompletelyExpanded            = 'pexc';
  214.     pContainerWindow            = 'cwnd';
  215.     pEntireContents                = 'ects';
  216.     pExpandable                    = 'pexa';
  217.     pExpanded                    = 'pexp';
  218.     pPreviousView                = 'svew';                        {     pSelection                                = 'sele',        // defined in AERegistry.r }
  219.     pView                        = 'pvew';
  220.     pIconSize                    = 'lvis';                        {  defined above }
  221.     pKeepArranged                = 'arrg';
  222.     pKeepArrangedBy                = 'arby';
  223.  
  224. {  Properties of class cDesktop (subclass of cContainer) }
  225.     pStartupDisk                = 'sdsk';
  226.     pTrash                        = 'trsh';                        {  NOTE can't use cTrash     }
  227.  
  228. {  Properties of class cSharableContainer (subclass of cContainer) }
  229.     pOwner                        = 'sown';
  230.     pOwnerPrivileges            = 'ownr';
  231.     pGroup                        = 'sgrp';
  232.     pGroupPrivileges            = 'gppr';
  233.     pGuestPrivileges            = 'gstp';
  234.     pArePrivilegesInherited        = 'iprv';
  235.     pExported                    = 'sexp';
  236.     pMounted                    = 'smou';
  237.     pSharingProtection            = 'spro';
  238.     pSharing                    = 'shar';
  239.     pSharingWindow                = 'swnd';
  240.  
  241. {  Properties of class cDisk (subclass of cSharableContainer) }
  242.     pCapacity                    = 'capa';
  243.     pEjectable                    = 'isej';
  244.     pFreeSpace                    = 'frsp';
  245.     pLocal                        = 'isrv';
  246.     pIsStartup                    = 'istd';
  247.  
  248. {  Properties of class cTrash (subclass of cSharableContainer) }
  249.     pWarnOnEmpty                = 'warn';
  250.  
  251. {  Properties of class cWindow (subclass of cContentSpace) }
  252.                                                                 {     pBounds                                    = 'pbnd',        // defined in AERegistry.r }
  253.                                                                 {     pHasCloseBox                            = 'hclb',        // defined in AERegistry.r }
  254.                                                                 {     pIsFloating                                = 'isfl',        // defined in AERegistry.r }
  255.                                                                 {     pIndex                                    = 'pidx',        // defined in AERegistry.r }
  256.                                                                 {     pIsModal                                = 'pmod',        // defined in AERegistry.r }
  257.                                                                 {     pPosition                                = 'posn',        // defined above }
  258.                                                                 {     pIsResizable                            = 'prsz',        // defined in AERegistry.r }
  259.                                                                 {     pHasTitleBar                            = 'ptit',        // defined in AERegistry.r }
  260.                                                                 {     pVisible                                = 'pvis',        // defined in AERegistry.r }
  261.                                                                 {     pIsZoomable                                = 'iszm',        // defined in AERegistry.r }
  262.                                                                 {     pIsZoomed                                = 'pzum',        // defined in AERegistry.r }
  263.     pIsZoomedFull                = 'zumf';
  264.     pIsPopup                    = 'drwr';
  265.     pIsPulledOpen                = 'pull';                        {  only applies to popup windows }
  266.     pIsCollapsed                = 'wshd';                        {  only applies to normal windows }
  267.  
  268. {  Properties of class cContainerWindow (subclass of cWindow) }
  269.     pObject                        = 'cobj';
  270.  
  271. {  Properties of class cSharingWindow (subclass of cWindow) }
  272.     pSharableContainer            = 'sctr';
  273.  
  274. {  Properties of networking support }
  275.     pFileShareOn                = 'fshr';
  276.     pFileShareStartingUp        = 'fsup';
  277.     pProgramLinkingOn            = 'iac ';
  278.  
  279. {  Properties of class cPreferencesWindow (subclass of cWindow) }
  280.                                                                 {     pShowFolderSize                            = 'sfsz',            // defined above for Views CP }
  281.                                                                 {     pShowComment                            = 'scom',            // defined above for Views CP }
  282.     ShowModificationDate        = 'sdat';                        {  pShowDate defined above for Views CP }
  283.                                                                 {     pShowKind                                = 'sknd',            // defined above for Views CP }
  284.                                                                 {     pShowLabel                                = 'slbl',            // defined above for Views CP }
  285.                                                                 {     pShowSize                                = 'ssiz',            // defined above for Views CP }
  286.                                                                 {     pShowVersion                            = 'svrs',            // defined above for Views CP }
  287.                                                                 {     pShowCreationDate                        = 'scda',            // Removed from Finder 8.0 HIS }
  288.                                                                 {     pShowFileType                            = 'sfty',            // Removed from Finder 8.0 HIS }
  289.                                                                 {     pShowFileCreator                        = 'sfcr',            // Removed from Finder 8.0 HIS }
  290.                                                                 {     pListViewIconSize                        = 'lvis',            // defined above for Views CP }
  291.                                                                 {     pGridIcons                                = 'fgrd',            // defined above for Views CP }
  292.                                                                 {     pStaggerIcons                            = 'fstg',            // defined above for Views CP }
  293.                                                                 {     pViewFont                                = 'vfnt',            // defined above for Views CP }
  294.                                                                 {     pViewFontSize                            = 'vfsz',            // defined above for Views CP }
  295.     pUseRelativeDate            = 'urdt';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  296.     pDelayBeforeSpringing        = 'dela';
  297.     pSpringOpenFolders            = 'sprg';
  298.     pUseShortMenus                = 'usme';
  299.     pUseWideGrid                = 'uswg';
  300.     pLabel1                        = 'lbl1';
  301.     pLabel2                        = 'lbl2';
  302.     pLabel3                        = 'lbl3';
  303.     pLabel4                        = 'lbl4';
  304.     pLabel5                        = 'lbl5';
  305.     pLabel6                        = 'lbl6';
  306.     pLabel7                        = 'lbl7';                        {     pObject                                    = cObject            // defined above }
  307.  
  308. {  Properties of class cProcess (subclass of cObject) }
  309.                                                                 {     pName                                    = 'pnam',            // defined in AERegistry.r }
  310.     pFile                        = 'file';                        {     pCreatorType                            = 'fcrt',            // defined above }
  311.                                                                 {     pFileType                                = 'asty',            // defined above }
  312.                                                                 {     pIsFrontProcess                            = 'pisf',            // defined in AERegistry.r }
  313.                                                                 {     pAppPartition                            = 'appt',            // defined above }
  314.     pPartitionSpaceUsed            = 'pusd';                        {     pIsScriptable                            = 'isab',            // defined in AERegistry.r }
  315.                                                                 {     pVisible                                = 'pvis'            // defined in AERegistry.r }
  316.     pLocalAndRemoteEvents        = 'revt';
  317.  
  318. {  Properties of class cAccessoryProcess (subclass of cProcess) }
  319.     pDeskAccessoryFile            = 'dafi';
  320.  
  321. {  Properties of class cApplicationProcess (subclass of cProcess) }
  322.     pApplicationFile            = 'appf';
  323.  
  324.  
  325. {  Properties of class cUser (subclass of cObject) }
  326.                                                                 {     pBounds }
  327.                                                                 {     pIconBitmap }
  328.                                                                 {     pLabelIndex }
  329.                                                                 {     pName }
  330.                                                                 {     pPosition }
  331.                                                                 {     pWindow                                    = cWindow,            // defined above }
  332.     pCanConnect                    = 'ccon';
  333.     pCanChangePassword            = 'ccpw';
  334.     pCanDoProgramLinking        = 'ciac';
  335.     pIsOwner                    = 'isow';
  336.     pARADialIn                    = 'arad';
  337.     pShouldCallBack                = 'calb';
  338.     pCallBackNumber                = 'cbnm';
  339.  
  340. {
  341.    Properties of class cApplication (subclass of cObject)
  342.    NOTE: properties for the special folders must match their respective kXXXFolderType constants
  343. }
  344.     pAboutMacintosh                = 'abbx';
  345.     pAppleMenuItemsFolder        = 'amnu';                        {  kAppleMenuFolderType }
  346.                                                                 {     pClipboard                                = 'pcli',            // defined in AERegistry.r }
  347.     pControlPanelsFolder        = 'ctrl';                        {  kControlPanelFolderType }
  348.     pDesktop                    = 'desk';                        {  kDesktopFolderType }
  349.     pExtensionsFolder            = 'extn';                        {  kExtensionFolderType }
  350.                                                                 {     pFileShareOn                            = 'fshr',            // defined above }
  351.     pFinderPreferences            = 'pfrp';
  352.     pFontsFolder                = 'ffnt';                        {     pIsFrontProcess                            = 'pisf',            // defined in AERegistry.r }
  353.                                                                 {     pInsertionLoc                            = 'pins',            // defined in AERegistry.r }
  354.     pLargestFreeBlock            = 'mfre';
  355.     pPreferencesFolder            = 'pref';                        {  kPreferencesFolderType }
  356.                                                                 {     pProductVersion                            = 'ver2',            // defined above }
  357.                                                                 {     pUserSelection                            = 'pusl',            // defined in AERegistry.r }
  358.                                                                 {     pFileShareStartingUp                    = 'fsup',            // defined above }
  359.     pShortCuts                    = 'scut';
  360.     pShutdownFolder                = 'shdf';
  361.     pStartupItemsFolder            = 'strt';                        {  kStartupFolderType }
  362.     pSystemFolder                = 'macs';                        {  kSystemFolderType }
  363.     pTemporaryFolder            = 'temp';                        {  kTemporaryFolderType }
  364.                                                                 {     pVersion                                = 'vers',            // defined in AERegistry.r }
  365.     pViewPreferences            = 'pvwp';                        {     pVisible                                = 'pvis',            // defined in AERegistry.r }
  366.     pStartingUp                    = 'awak';                        {  private property to tell whether the Finder is fully up and running }
  367.  
  368. {  Properties of class cSharingPrivileges (subclass of cObject) }
  369.     pSeeFiles                    = 'prvr';
  370.     pSeeFolders                    = 'prvs';
  371.     pMakeChanges                = 'prvw';
  372.  
  373. {
  374.    Properties of class cPreferences (subclass of cObject)
  375.   enum (
  376.       pShowFolderSize                            = 'sfsz',            // defined above for Views CP
  377.       pShowComment                            = 'scom',            // defined above for Views CP
  378.       pShowModificationDate                    = pShowDate,            // pShowDate defined above for Views CP
  379.       pShowKind                                = 'sknd',            // defined above for Views CP
  380.       pShowLabel                                = 'slbl',            // defined above for Views CP
  381.       pShowSize                                = 'ssiz',            // defined above for Views CP
  382.       pShowVersion                            = 'svrs',            // defined above for Views CP
  383.       pShowCreationDate                        = 'scda',            // defined in cPreferencesWindow
  384.       pShowFileType                            = 'sfty',            // defined in cPreferencesWindow
  385.       pShowFileCreator                        = 'sfcr',            // defined in cPreferencesWindow
  386.       pListViewIconSize                        = 'lvis',            // defined above for Views CP
  387.       pGridIcons                                = 'fgrd',            // defined above for Views CP
  388.       pStaggerIcons                            = 'fstg',            // defined above for Views CP
  389.       pViewFont                                = 'vfnt',            // defined above for Views CP
  390.       pViewFontSize                            = 'vfsz',            // defined above for Views CP
  391.       pUseRelativeDate                        = 'urdt',            // defined in cPreferencesWindow
  392.       pDelayBeforeSpringing                    = 'dela',            // defined in cPreferencesWindow
  393.       pShowMacOSFolder                        = 'sosf',            // defined in cPreferencesWindow
  394.       pUseShortMenus                            = 'usme',            // defined in cPreferencesWindow
  395.       pUseCustomNewMenu                        = 'ucnm',            // defined in cPreferencesWindow
  396.       pShowDesktopInBackground                = 'sdtb',            // defined in cPreferencesWindow
  397.       pActivateDesktopOnClick                    = 'adtc',            // defined in cPreferencesWindow
  398.       pLabel1                                    = 'lbl1',            // defined in cPreferencesWindow
  399.       pLabel2                                    = 'lbl2',            // defined in cPreferencesWindow
  400.       pLabel3                                    = 'lbl3',            // defined in cPreferencesWindow
  401.       pLabel4                                    = 'lbl4',            // defined in cPreferencesWindow
  402.       pLabel5                                    = 'lbl5',            // defined in cPreferencesWindow
  403.       pLabel6                                    = 'lbl6',            // defined in cPreferencesWindow
  404.       pLabel7                                    = 'lbl7',            // defined in cPreferencesWindow
  405.       pWindow                                    = cWindow            // defined above
  406.   );
  407. }
  408.  
  409. {
  410.    Properties of class cLabel (subclass of cObject)
  411.   enum (
  412.       pName                                    = 'pnam',            // defined in AERegistry.r
  413.       pColor                                    = 'colr',            // defined in AERegistry.r
  414.   );
  415. }
  416.  
  417. {  Misc Properties }
  418.     pSmallIcon                    = 'smic';
  419.     pSmallButton                = 'smbu';
  420.     pLargeButton                = 'lgbu';
  421.     pGrid                        = 'grid';
  422.  
  423. {
  424.   //////////////////////////////////////
  425.    Enumerations defined by the Finder
  426.   //////////////////////////////////////
  427. }
  428.  
  429.     enumViewBy                    = 'vwby';
  430.     enumGestalt                    = 'gsen';
  431.     enumConflicts                = 'cflc';
  432.     enumExistingItems            = 'exsi';
  433.     enumOlderItems                = 'oldr';
  434.  
  435.     enumDate                    = 'enda';
  436.     enumAnyDate                    = 'anyd';
  437.     enumToday                    = 'tday';
  438.     enumYesterday                = 'yday';
  439.     enumThisWeek                = 'twek';
  440.     enumLastWeek                = 'lwek';
  441.     enumThisMonth                = 'tmon';
  442.     enumLastMonth                = 'lmon';
  443.     enumThisYear                = 'tyer';
  444.     enumLastYear                = 'lyer';
  445.     enumBeforeDate                = 'bfdt';
  446.     enumAfterDate                = 'afdt';
  447.     enumBetweenDate                = 'btdt';
  448.     enumOnDate                    = 'ondt';
  449.  
  450.     enumAllDocuments            = 'alld';
  451.     enumFolders                    = 'fold';
  452.     enumAliases                    = 'alia';
  453.     enumStationery                = 'stat';
  454.  
  455.     enumWhere                    = 'wher';
  456.     enumAllLocalDisks            = 'aldk';
  457.     enumAllRemoteDisks            = 'ardk';
  458.     enumAllDisks                = 'alld';
  459.     enumAllOpenFolders            = 'aofo';
  460.  
  461.  
  462.     enumIconSize                = 'isiz';
  463.     enumSmallIconSize            = 'smic';
  464.     enumMiniIconSize            = 'miic';
  465.     enumLargeIconSize            = 'lgic';
  466.  
  467.     enumSortDirection            = 'sodr';
  468.     enumSortDirectionNormal        = 'snrm';
  469.     enumSortDirectionReverse    = 'srvs';
  470.  
  471. {
  472.   //////////////////////////////////////
  473.    Types defined by the Finder
  474.   //////////////////////////////////////
  475. }
  476.  
  477.     typeIconFamily                = 'ifam';                        {  An AEList of typeIconAndMask, type8BitIcon, & c. }
  478.     typeIconAndMask                = 'ICN#';
  479.     type8BitIcon                = 'icl8';
  480.     type4BitIcon                = 'icl4';
  481.     typeSmallIconAndMask        = 'ics#';
  482.     typeSmall8BitIcon            = 'ics8';
  483.     typeSmall4BitIcon            = 'ics4';
  484.     typeRelativeTime            = 'rtim';
  485.     typeConceptualTime            = 'timc';
  486.  
  487. {
  488.   //////////////////////////////////////
  489.    Keywords defined by the Finder
  490.   //////////////////////////////////////
  491. }
  492.  
  493.     keyIconAndMask                = 'ICN#';
  494.     key8BitIcon                    = 'icl8';
  495.     key4BitIcon                    = 'icl4';
  496.     keySmallIconAndMask            = 'ics#';
  497.     keySmall8BitIcon            = 'ics8';
  498.     keySmall4BitIcon            = 'ics4';
  499.     keyAEUsing                    = 'usin';
  500.     keyAEReplacing                = 'alrp';
  501.     keyAENoAutoRouting            = 'rout';
  502.     keyLocalPositionList        = 'mvpl';
  503.     keyGlobalPositionList        = 'mvpg';
  504.  
  505. {
  506.   //////////////////////////////////////
  507.    New prepositions used by the Finder
  508.   //////////////////////////////////////
  509. }
  510.  
  511.     keyASPrepositionHas            = 'has ';
  512.     keyAll                        = 'kyal';
  513.     keyOldFinderItems            = 'fsel';
  514.  
  515. {
  516.   //////////////////////////////////////
  517.    New key forms used by the Finder
  518.   //////////////////////////////////////
  519. }
  520.  
  521.     formAlias                    = 'alis';
  522.     formCreator                    = 'fcrt';
  523.  
  524.  
  525. {
  526.   //////////////////////////////////////
  527.    Finder error codes
  528.   //////////////////////////////////////
  529. }
  530.  
  531.     errFinderIsBusy                = -15260;
  532.     errFinderWindowNotOpen        = -15261;
  533.     errFinderCannotPutAway        = -15262;
  534.     errFinderWindowMustBeIconView = -15263;                        {  RequireWindowInIconView }
  535.     errFinderWindowMustBeListView = -15264;                        {  RequireWindowInListView }
  536.     errFinderCantMoveToDestination = -15265;
  537.     errFinderCantMoveSource        = -15266;
  538.     errFinderCantOverwrite        = -15267;
  539.     errFinderIncestuousMove        = -15268;                        {  Could just use errFinderCantMoveSource }
  540.     errFinderCantMoveToAncestor    = -15269;                        {  Could also use errFinderCantMoveSource }
  541.     errFinderCantUseTrashedItems = -15270;
  542.     errFinderItemAlreadyInDest    = -15271;                        {  Move from folder A to folder A }
  543.     errFinderUnknownUser        = -15272;                        {  Includes unknown group }
  544.     errFinderSharePointsCantInherit = -15273;
  545.     errFinderWindowWrongType    = -15274;
  546.     errFinderPropertyNowWindowBased = -15275;
  547.     errFinderCorruptOpenFolderList = -15276;
  548.     errFinderNoInvisibleFiles    = -15277;
  549.     errFinderBoundsWrong        = -15278;
  550.     errAEValueOutOfRange        = -15279;
  551.     errFinderPropertyDoesNotApply = -15280;
  552.     errFinderFileSharingMustBeOn = -15281;
  553.     errFinderMustBeActive        = -15282;
  554.     errFinderVolumeNotFound        = -15283;                        {  more descriptive than what we get with nsvErr }
  555.     errFinderLockedItemsInTrash    = -15284;                        {  there are some locked items in the trash }
  556.     errFinderOnlyLockedItemsInTrash = -15285;                    {  all the items (except folders) in the trash are locked }
  557.     errFinderProgramLinkingMustBeOn = -15286;
  558.     errFinderLastReserved        = -15379;
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565. {$ALIGN RESET}
  566. {$POP}
  567.  
  568. {$SETC UsingIncludes := FinderRegistryIncludes}
  569.  
  570. {$ENDC} {__FINDERREGISTRY__}
  571.  
  572. {$IFC NOT UsingIncludes}
  573.  END.
  574. {$ENDC}
  575.